.chart-bar-line {
    height: 50px;
    background: #EEE;
    width: 100%;
    position: relative;
    padding: 8px 40px;
    margin: 15px 0;
}
.chart-bar-line .box-progress {
    height: 100%;
    position: relative;
    border-right: 2px solid #ccc;
}
.chart-bar-line .box-progress .progress {
    position: absolute;
    left: 0;
    height: 34px;
    right: unset;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;

}
.chart-bar-line .box-progress  .progress::after {
    content: attr(data-value);
    font-family: iranYekan;

    background: white;
    width: 25px;
    height: 26px;
    position: absolute;
    right: 4px;
    top: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 12px;
}
.chart-bar-line::after {
    content: attr(data-min);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);

    font-family: iranYekan;
    font-size: 20px;
}
.chart-bar-line::before {
    content: attr(data-max);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);

    font-family: iranYekan;
    font-size: 18px;
}



/* Color */
/* Orange*/
.chart-bar-line.orange .box-progress .progress {
    background: orange;
}
.chart-bar-line.orange .box-progress  .progress::after {
    color: orange;
}
.chart-bar-line.orange::after {
    color: orange;
}
.chart-bar-line.orange::before {
    color: orange;
}
/* Blue */
.chart-bar-line.blue .box-progress .progress {
    background: #26B0F5;
}
.chart-bar-line.blue .box-progress  .progress::after {
    color: #26B0F5;
}
.chart-bar-line.blue::after {
    color: #26B0F5;
}
.chart-bar-line.blue::before {
    color: #26B0F5;
}
/* purple */
.chart-bar-line.purple .box-progress .progress {
    background: #A800BB;
}
.chart-bar-line.purple .box-progress  .progress::after {
    color: #A800BB;
}
.chart-bar-line.purple::after {
    color: #A800BB;
}
.chart-bar-line.purple::before {
    color: #A800BB;
}
/* cyan */
.chart-bar-line.cyan .box-progress .progress {
    background: #00B999;
}
.chart-bar-line.cyan .box-progress  .progress::after {
    color: #00B999;
}
.chart-bar-line.cyan::after {
    color: #00B999;
}
.chart-bar-line.cyan::before {
    color: #00B999;
}
/* red */
.chart-bar-line.red .box-progress .progress {
    background: #FF2A4A;
}
.chart-bar-line.red .box-progress  .progress::after {
    color: #FF2A4A;
}
.chart-bar-line.red::after {
    color: #FF2A4A;
}
.chart-bar-line.red::before {
    color: #FF2A4A;
}